home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #5 / CD 5 (Black) - 2001.iso / K-CS.dcr / 00358_Toggle Two.ls < prev    next >
Encoding:
Text File  |  2001-02-20  |  1.3 KB  |  40 lines

  1. property ItemState
  2.  
  3. on new me
  4.   set the visible of sprite the spriteNum of me to 1
  5.   set the visible of sprite (the spriteNum of me + 1) to 0
  6.   set the visible of sprite (the spriteNum of me + 2) to ItemState
  7.   set the visible of sprite (the spriteNum of me + 3) to ItemState
  8. end
  9.  
  10. on mouseEnter me
  11.   set the visible of sprite 86 to 0
  12.   set the visible of sprite 87 to 0
  13.   set the visible of sprite 88 to 0
  14.   set the visible of sprite 89 to 0
  15.   set the visible of sprite (the spriteNum of me + 1) to 1
  16. end
  17.  
  18. on mouseLeave me
  19.   set the visible of sprite 86 to 1
  20.   set the visible of sprite 87 to 1
  21.   set the visible of sprite 88 to 1
  22.   set the visible of sprite 89 to 1
  23.   set the visible of sprite (the spriteNum of me + 1) to 0
  24. end
  25.  
  26. on mouseUp me
  27.   set Seen to the visible of sprite (the spriteNum of me + 3)
  28.   set the visible of sprite (the spriteNum of me + 2) to 1 - Seen
  29.   set the visible of sprite (the spriteNum of me + 3) to 1 - Seen
  30. end
  31.  
  32. on getBehaviorDescription
  33.   return "Hilite a field for description. Second & third field are intended for toggling bitmaps (checkboxes and such). The paramitra is 1 for default on, 0 for default off."
  34. end
  35.  
  36. on getPropertyDescriptionList
  37.   set p_list to [#ItemState: [#default: ItemState, #format: #integer, #comment: "Initial state", #range: [#min: 0, #max: 1]]]
  38.   return p_list
  39. end
  40.